std::stack::push
From Cppreference
| C++ Standard Library | ||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||
| Containers library | ||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||
| std::stack | ||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||
| void push( const T& value );
| ||
| void push( T&& value );
| (C++0x) | |
Pushes the given element value to the top of the stack.
1) Effectively calls c.push_back(value)
2) Effectively calls c.push_back(std::move(value))
Contents |
Parameters
| value | - | the value of the element to push |
Return value
(none)
Complexity
| This section is incomplete |
See also
| constructs element in-place at the top (public member function) | ||
| removes the top element (public member function) | ||